code snippet for header footer in wordpress

72

add_action( 'wp_head', function () { ?>

	<!-- header code goes here -->

<?php } );
add_action( 'wp_footer', function () { ?>

	<!-- footer code goes here -->

<?php } );

Comments

Submit
0 Comments